home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-X 1997 October
/
pcx14_9710.iso
/
swag
/
delphi.swg
/
0160_Padding a numeric with zeros.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-08-30
|
98 b
|
7 lines
var s: string;
begin
FmtStr(s, '%.5d', [StrToInt(edit1.text)]);
edit1.text := s;
end;